ProStationAudio Arexx Interface



Arexx Port The Arexx port name is "PSA.1".

Example: Address PSA.1

PLAY This command starts timeline playback at current cursor position.

Example: PLAY

LOCATE 'hh:mm:ss:ff' This command sets the timeline cursor to the specified timecode value. Note that the timecode string must be surrounded by a ' ' pair.

Example: LOCATE '00:01:30:00'

PRELOAD This command preloads internal buffers by loading audio data from disk at current cursor position. It is intended to allow a later PLAY comand with zero latency. In a typical application the script will read external timecode from an Arexx compatible source, then will issue a PLAY command.

Example: LOCATE '00:00:10:00'; PRELOAD; ; PLAY

STOP This command stops PLAY, MONITOR, RECORD commands.
Example: STOP

MONITOR This command monitors inputs. You must enter monitoring before issuing a RECORD command.

Example: MONITOR

RECORD This command starts recording. You must enter monitoring before issuing a RECORD command.

Example: MONITOR; RECORD